	/*@media only screen and (min-width: 768px) {
#site-header {
	color: white !important;
	}
	#site-header.scrolled {

	color: #0e4e81 !important;
}
	}*/
	
.card-date-home {
    align-items: center;
	flex-direction: row-reverse;
}
		

/* Animation for numbers */
.numbers {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.numbers.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for intro-text */
.intro-text {
    opacity: 0;
    transition: opacity 2s ease-out;
}

.intro-text.animate {
    opacity: 1;
}
	
	
	.card-wrapper-home{
		opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
	}
	.card-wrapper-home.animate{
		opacity: 1;
    transform: translateX(0);
	}
	
	.scrollable {
		padding-inline-start: 500px !important;
		transition: padding-inline-start 1s ease-out;
	}
	.scrollable.animate{
		padding-inline-start: 120px !important;
	}
	
	

	
	
	
	.projects1 {

    transform: translateY(50px);
    transition: transform 2s ease-out;
}

.projects1.animate {

    transform: translateY(0);
	
}

	
	.view-portal{
		transform: scale(1);
    	transition: transform 1s ease-out, border-radius 2s ease-out;
	}
	
	.view-portal.animate {
    transform: scale(0.8);
		border-radius: 30px;
}
	
/* Animation for institution-item */
.institutions-container {
	transform: scale(0.5);
    transition: transform 0.8s ease-out;
}

.institutions-container.animate {
    transform: scale(1);
}
	
	.filter-section {
		transform: scale(0);
    transition: transform 0.8s ease-out;	
		
	}
	.filter-section.animate {
	transform: scale(1);	
	}








    .video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        height: calc(100% + 120px);
        border: 0;
    }

    .control-button {
        position: absolute;
        bottom: 10px;
        z-index: 1;


        border: none;
        padding: 5px;
        cursor: pointer;
        margin-right: 5px;
        display: flex;

    }


    .control-button img {
        width: 24px;
        padding: 10px;
        background-color: #c3c2c6;
        border-radius: 300px;

    }

    #muteButton {
        left: 10px;
    }

    #playPauseButton {
        left: 65px;
    }

    .content {
        height: 2000px;
        padding: 20px;
    }














   .mobile {
        display: none;
    }

    /* Hide .desktop elements on screens with a maximum width of 768px (typical for mobile devices) */
    @media (max-width: 768px) {
		.scrollable {
		padding-inline-start: 120px !important;
		transition: padding-inline-start 1s ease-out;
	}
		
			.scrollable.animate{
		padding-inline-start: 50px !important;
	}
		
		
        .desktop {
            display: none;
        }

        .mobile {
            display: block;
        }
    }






                    .control-button svg {
                        width: 24px;
                        height: 24px;
                    }









    .card-wrapper-home {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 10px 0;
    }

    .pagination-home {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .pagination-home button {
        width: 12px;
        height: 12px;
        background: #ddd;
        border: none;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .pagination-home button.active {
        background: #e5303c;
    }

    .card-container {
        flex-wrap: nowrap;
        display: flex;
        flex-direction: row-reverse;
        overflow-x: auto;
        /* Allow scrolling */
        -webkit-overflow-scrolling: touch;
        /* Enable smooth scrolling on iOS devices */
        scroll-snap-type: x mandatory;
        margin: 20px;
        padding: 10px 0;
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar for IE/Edge */
    }

    .card-container-home::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari, and Opera */
    }
















    .viewport {
        overflow: hidden;
        position: relative;
    }

    .scrollable {
        overflow-x: scroll;
        overflow-y: hidden;
        padding: 50px 0;
        box-sizing: content-box;

    }

    .scrollable::-webkit-scrollbar {
        display: none;
    }

    .scrollable {
        scrollbar-width: none;
    }

    .scrollable {
        -ms-overflow-style: none;
        display: flex;
    }

    .controls2 {
        padding: 0 80px;
        align-content: end;
        display: flex;
        gap: 15px;

        direction: rtl;
    }

    .controls2 svg {
        font-size: 16px;
        height: 36px;
        border-radius: 50px;
        background-color: rgba(210, 210, 215, 0.64);
        cursor: pointer;
    }













    .view-portal {
        max-width: 100%;
        position: relative;
        margin: auto;
        overflow: hidden;
        border-radius: 10px;
        direction: ltr;
    }

    .slide-tray {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 56.25vw;
        /* 16:9 aspect ratio */
    }

    .frame-wrapper {
        min-width: 100%;
        box-sizing: border-box;
        height: 56.25vw;
        /* 16:9 aspect ratio */
    }

    .frame-wrapper iframe {
        width: 100%;
        height: 56.25vw;
        /* 16:9 aspect ratio */
        border: none;
        border-radius: 10px;
    }

    input[type="radio"] {
        display: none;
    }

    /* Slideshow logic with radio buttons */
    #option1:checked~.slide-tray {
        transform: translateX(0%);
    }

    #option2:checked~.slide-tray {
        transform: translateX(-100%);
    }

    #option3:checked~.slide-tray {
        transform: translateX(-200%);
    }

    #option4:checked~.slide-tray {
        transform: translateX(-300%);
    }

    /* Dots for navigation */
    .dot-portal {
        text-align: center;
        position: absolute;
        bottom: 15px;
        width: 100%;
    }

    .dot-portal label {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 5px;
        background-color: #787878;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }













